The Source Control Integration API > Enablers > SCS_BeforeGet() |
![]() ![]() ![]() |
Description
Dreamweaver calls this function before getting or checking out one or more files. This enables your DLL to perform one operation, such as adding a checkout comment, to a group of files.
Arguments
*connectionData
*connectionData
is a pointer to the connection data.
Returns
A Boolean true
if successful, false
if unsuccessful.
Example
To get a group of files, Dreamweaver makes calls to the DLL in the following order:
SCS_BeforeGet(connectionData); SCS_Get(connectionData,remotePathList1,localPathList1,successList1); SCS_Get(connectionData,remotePathList2,localPathList2,successList2); SCS_Get(connectionData,remotePathList3,localPathList3,successList3); SCS_AfterGet(connectionData);
![]() ![]() ![]() |